home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg1.cab / HelloWorld.java < prev    next >
Text File  |  2005-05-18  |  623b  |  23 lines

  1. import com.sun.star.script.provider.XScriptContext;
  2. import com.sun.star.uno.UnoRuntime;
  3. import com.sun.star.text.XTextDocument;
  4. import com.sun.star.text.XTextRange;
  5. import com.sun.star.text.XText;
  6. /**
  7.  *  HelloWorld class
  8.  *
  9.  */
  10. public class HelloWorld {
  11.   public static void printHW(XScriptContext xSc) {
  12.  
  13.     // getting the text document object
  14.     XTextDocument xtextdocument = (XTextDocument) UnoRuntime.queryInterface(
  15. XTextDocument.class, xSc.getDocument());
  16.     XText xText = xtextdocument.getText();
  17.     XTextRange xTextRange = xText.getEnd();
  18.     xTextRange.setString( "Hello World (in Java)" );
  19.  
  20.   }// printHW
  21.  
  22. }
  23.